定义将分配给 Timeline 视图中某行的 CSS 类
section | object | 该 section 对象 |
timeline | object | 该 timeline 对象 |
Available only in PRO Edition
scheduler.templates.timeline_row_class = function(section, timeline){
return "";
};
该模板需要启用 timeline 插件。
该模板的默认实现如下:
scheduler.templates.{timelineName}_row_class = function(section, timeline){
if(timeline.folder_events_available && section.children){
return "folder";
}
return "";
};
版本 v5.3.9 中新增
返回顶部